home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Developer / PAPTool / idle.h < prev    next >
Encoding:
Text File  |  1992-11-29  |  214 b   |  14 lines  |  [TEXT/MPS ]

  1. //    ©1992 Conrad Carlen & Manuel Veloso. All rights reserved.
  2. #ifndef _IDLE_
  3. #define _IDLE_
  4.  
  5. #ifndef __EVENTS__
  6. #include <Events.h>
  7. #endif
  8.  
  9. inline void idle(void)
  10. {
  11.     if (!(TickCount() % 10)) SpinCursor(1);
  12. }
  13. #endif
  14.